home *** CD-ROM | disk | FTP | other *** search
/ APDL Other Worlds / APDL Other Worlds Collection.iso / SF3000 / Extras / !SFcolours / h / Main < prev    next >
Encoding:
Text File  |  2003-10-24  |  500 b   |  25 lines

  1. /*
  2.  *  SFcolours - Star Fighter 3000 colours editor
  3.  *  Main application skeleton
  4.  *  Copyright (C) 2001  Chris Bazley
  5.  */
  6.  
  7. #ifndef SFCMain_h
  8. #define SFCMain_h
  9.  
  10. #include <stdbool.h>
  11.  
  12. #include "kernel.h"
  13. #include "toolbox.h"
  14.  
  15. extern _kernel_oserror shared_err_block;
  16. extern int             palette[256];
  17. extern ObjectId        pal256_sharedid;
  18. extern char            taskname[32];
  19. #ifdef INT_COLOUR_FIND
  20. extern bool            use_colour_trans;
  21. #endif
  22. extern int main(int argc, char *argv[]);
  23.  
  24. #endif
  25.